home *** CD-ROM | disk | FTP | other *** search
/ 74.208.221.89 / 74.208.221.89.zip / 74.208.221.89 / topsellers - Copy.ascx < prev    next >
Text File  |  2015-03-14  |  2KB  |  53 lines

  1.  <!-- PAGE -->
  2.         <section class="page-section">
  3.             <div class="container">
  4.                 <div class="row">
  5. <%
  6.     
  7.     Dim lstr As String = "FLIPKART,FLIPKART,FLIPKART"
  8.     Dim lstr2() As String = lstr.Split(",")
  9.     For Each lstr3 As String In lstr2
  10.     %>
  11.                       <div class="col-md-4">
  12.                         <div class="product-list">
  13.                             <a class="btn btn-theme btn-title-more" href="category.aspx?store=<%= Trim(lstr3)%>">See All</a>
  14.                             <h4 class="block-title"><span><%= UCase(lstr3)%></span></h4>
  15.                           <%
  16.                              
  17.                               mycon.con("Select top 3 lk_tempproducts.* from lk_tempproducts where store = '" & lstr3 & "'", 1, 1)
  18.                               While mycon.sql1.Read
  19.                                   Image = mycon.sql1("imageUrlStr").Split(",")
  20.                                   price = mycon.sql1("price").Split(",")
  21.                                   mrp = mycon.sql1("mrp").Split(",")
  22.                              %>
  23.                               <div class="media">
  24.                                 <a class="pull-left media-link" href="#">
  25.                                     <img class="media-object" src="<%= Image(1)%>" alt="" style="max-height:100px;min-height:100px;min-width:100px;max-width:100px">
  26.                                     <i class="fa fa-plus"></i>
  27.                                 </a>
  28.                                 <div class="media-body">
  29.                                     <a href="#"><%= mycon.sql1("title")%></a>
  30.                                     
  31.                                     <div class="price"><ins><%= price(0)%></ins> <del><%= mrp(0)%></del></div>
  32.                                 </div>
  33.                             </div>
  34.                             <%
  35.                                 End WHile
  36.                                 mycon.sql1.Close()
  37.                                 %>
  38.  
  39.  
  40.                         </div>
  41.                     </div>
  42. <%
  43. Next
  44.     %>
  45.  
  46.  
  47.  
  48.                
  49.                     
  50.                 </div>
  51.             </div>
  52.         </section>
  53.         <!-- /PAGE -->